home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / __init__.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  47 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''A package for parsing, handling, and generating email messages.'''
  5. __version__ = '3.0+'
  6. __all__ = [
  7.     'base64MIME',
  8.     'Charset',
  9.     'Encoders',
  10.     'Errors',
  11.     'Generator',
  12.     'Header',
  13.     'Iterators',
  14.     'Message',
  15.     'MIMEAudio',
  16.     'MIMEBase',
  17.     'MIMEImage',
  18.     'MIMEMessage',
  19.     'MIMEMultipart',
  20.     'MIMENonMultipart',
  21.     'MIMEText',
  22.     'Parser',
  23.     'quopriMIME',
  24.     'Utils',
  25.     'message_from_string',
  26.     'message_from_file']
  27.  
  28. def message_from_string(s, *args, **kws):
  29.     '''Parse a string into a Message object model.
  30.  
  31.     Optional _class and strict are passed to the Parser constructor.
  32.     '''
  33.     Parser = Parser
  34.     import email.Parser
  35.     return Parser(*args, **kws).parsestr(s)
  36.  
  37.  
  38. def message_from_file(fp, *args, **kws):
  39.     '''Read a file and parse its contents into a Message object model.
  40.  
  41.     Optional _class and strict are passed to the Parser constructor.
  42.     '''
  43.     Parser = Parser
  44.     import email.Parser
  45.     return Parser(*args, **kws).parse(fp)
  46.  
  47.